home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / aminet / dev / lang / ace102.lha / include / stddef.h < prev    next >
Text File  |  1993-01-30  |  454b  |  23 lines

  1. '..standard definitions for ACE programs.
  2.  
  3. '..null pointer
  4. CONST NULL=0&
  5.  
  6. '..boolean values
  7. CONST true=-1&
  8. CONST false=0&
  9.  
  10. '..maxima & minima
  11. CONST MaxInt       =  2147483647
  12. CONST MinInt       = -2147483648
  13. CONST MaxShort       =  32767        
  14. CONST MinShort       = -32768        
  15. CONST MaxReal      =  9.22337177E+18
  16. CONST MinReal      = -9.22337177E+18
  17. CONST MAXSTRINGLEN =  1024&
  18.  
  19. '..memory
  20. CONST MEMF_PUBLIC  = 1&
  21. CONST MEMF_CHIP    = 2&
  22. CONST MEMF_CLEAR   = 65536
  23.